home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 101 / CD-ROM 101.iso / compl / maya5ple / Install_MayaPLE5_English.exe / Maya / Data1.cab / stringArrayRemove.mel < prev    next >
Encoding:
Text File  |  2003-07-17  |  2.4 KB  |  79 lines

  1. // Copyright (C) 1997-2002 Alias|Wavefront,
  2. // a division of Silicon Graphics Limited.
  3. //
  4. // The information in this file is provided for the exclusive use of the
  5. // licensees of Alias|Wavefront.  Such users have the right to use, modify,
  6. // and incorporate this code into other products for purposes authorized
  7. // by the Alias|Wavefront license agreement, without fee.
  8. //
  9. // ALIAS|WAVEFRONT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  10. // INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  11. // EVENT SHALL ALIAS|WAVEFRONT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  12. // CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  13. // DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  14. // TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  15. // PERFORMANCE OF THIS SOFTWARE.
  16. //
  17. //
  18. //  Alias|Wavefront Script File
  19. //  MODIFY THIS AT YOUR OWN RISK
  20. //
  21. //  Creation Date:  04 January 1999
  22. //
  23. //<doc>
  24. //<name stringArrayRemove>
  25. //<owner "Alias|Wavefront Unsupported">
  26. //
  27. //<synopsis>
  28. //        string[] stringArrayRemove(string[] $item, string[] $list)
  29. //
  30. //<description>
  31. //        Remove the string items in the first string array from the
  32. //        second string array.  A new string array with the
  33. //        items removed is returned.  The second argument is left
  34. //        unchanged.
  35. //<P>
  36. //        Note that all occurrences of the given 
  37. //        string items will be removed from the string array, not
  38. //        just the first occurrence.
  39. //
  40. //<flags>
  41. //        string[] $items    A list of string values to remove from the string array.
  42. //        string[] $list    The array to be acted upon.
  43. //
  44. //<returns>
  45. //        string[] : Original list with all occurrences of the string items
  46. //        removed.  If none of the string items are in the string array then
  47. //        the returned string array is identical to the argument string array.
  48. //
  49. //<examples>
  50. //  string $list[] = { a, b, c, d, e, f, g };
  51. //  string $items[] = { a, c, e, g };
  52. //  string $diff[] = stringArrayRemove($items, $list);
  53. //  // Result : { b, d, f } //
  54. //
  55. //</doc>
  56. //
  57.  
  58. global proc string [] stringArrayRemove(
  59.     string $items[], 
  60.     string $list[])
  61. {
  62.     string $item, $listItem, $result[];
  63.     int    $keep, $resultIndex = 0;
  64.     
  65.     for ($listItem in $list) {
  66.         $keep = 1;
  67.         for ($item in $items) {
  68.             if ($item == $listItem) {
  69.                 $keep = 0;
  70.                 break;
  71.             }
  72.         }
  73.         if ($keep) $result[$resultIndex++] = $listItem;
  74.     }
  75.     
  76.     return $result;
  77. }
  78.  
  79.